home *** CD-ROM | disk | FTP | other *** search
- Path: sisnet.ssku.k12.ca.us!news
- From: scotrhig@sisnet.ssku.k12.ca.us (Scott River High School)
- Newsgroups: comp.lang.c
- Subject: Re: Problem Linking w/ Watcom - Please Help
- Date: 31 Jan 1996 22:43:05 GMT
- Organization: Scott River High School
- Message-ID: <4eor9p$t75@sisscoe.sisnet.ssku.k12.ca.us>
- References: <4e8kc3$avd@morgoth.sfu.ca>
- NNTP-Posting-Host: scottrhigh2.sisnet.ssku.k12.ca.us
- Mime-Version: 1.0
- Content-Type: Text/Plain; charset=US-ASCII
- X-Newsreader: WinVN 0.99.6
-
- In article <4e8kc3$avd@morgoth.sfu.ca>, dbullock@news.sfu.ca says...
- >
- >I am attempting to link a DOS program using Watcom's wlink
- >command, but I cannot get the linker to link the standard library.
- >The output from the link command says there are unresolved symbols
- >such as 'sprintf', 'putc', etc.
-
- well, did you compile the program with Watcom? Watcom uses a different
- internal naming format for functions.
-
- Standard:
- _<original function name>
-
- Watcom:
- <original function name>_
-
- Regards,
- Ananda
-
-